home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / s / ep_savemodule.rexx < prev    next >
OS/2 REXX Batch file  |  1993-10-20  |  217b  |  19 lines

  1. /* EaglePlayer - angegebenes Module saven */
  2.  
  3. parse arg filename
  4.  
  5. address 'rexx_EP'
  6.  
  7. options results
  8.  
  9. savemodule filename
  10.  
  11. if result == "no" then do
  12.     say "Module not loaded !"
  13. end
  14. else do
  15.     say "Module loaded !"
  16. end
  17.  
  18.  
  19.